home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / H190.ZIP / VERTEX1.EXE / ENTRYBL.LNK < prev    next >
Text File  |  1992-09-12  |  3KB  |  95 lines

  1. #
  2. # Blinker 1.51 Sample Link file for Clipper 5.01
  3. #
  4. # This sample script is intended to be used as a template for your own scripts
  5. #
  6. # This script is set up a a development script, that enables incremental
  7. # linking, and overlays EXTEND.LIB from the Nantucket libraries. When
  8. # incremental linking is enabled, applications will use somewhat more memory
  9. # than normal, due to a certain amount of 'padding' being left at the end
  10. # of each Clipper procedure, but this is offset by the extremely fast
  11. # incremental link times.
  12. #
  13. # Before shipping a completed application, you should disable the incremental
  14. # linking feature, which will save memory, and increase execution speed by:
  15. #
  16. #         a) Enabling the 5.01 Clipper paging system
  17. #         b) Remove the padding between procedures
  18. #         c) Turning on symbol table compression
  19. #
  20. # For final links - UN-COMMENT the following command:
  21. #
  22. BLINKER INCREMENTAL OFF
  23. #BLINKER CLIPPER PROFILE ON
  24. #
  25. # Burn in your own Clipper variables here eg: F25;SWAPPATHC:\;
  26. #
  27. #BLINKER EXECUTABLE CLIPPER F25;E1024;X64;BADCACHE;
  28. #
  29. # Specify the EXE filename here:
  30. #
  31. OUTPUT ENTRY
  32. #
  33. # List your Clipper S'87 object modules here. The first FILE mentioned in any
  34. # Blinker link script MUST be a Clipper code module. The first module may be
  35. # overlaid if required.
  36. #
  37. #MODULE UTPROFILE
  38. MODULE __GTMAXCOL
  39. MODULE __GTMAXROW
  40. MODULE UTEDPIC
  41. MODULE __ATPROMPT
  42. MODULE EXITSTATE
  43. MODULE READVAR
  44. MODULE SUBSCRIPT
  45. MODULE _EXITSTATE
  46. MODULE GETACTIVE
  47. MODULE SETTLE
  48. MODULE AFILL
  49. MODULE BXBUTTON
  50. #
  51. # Uncomment and list your 3rd party non overlayable object modules here
  52. # eg: OVERLAY's RESIDENT.OBJ
  53. #
  54. #FILE <3rd party1>,<3rd party2>
  55. BEGINAREA
  56. #
  57. #   List the rest of your Clipper code files here.
  58. #
  59. #   FILE <next Clipper file>
  60. #
  61. #   UNCOMMENT and list your own Clipper code libraries here
  62. #
  63. #
  64. #   UNCOMMENT and list your overlayable 3rd party libraries here
  65. #
  66.      file ENTRY
  67.      ALLOCATE VERTEXUS.LIB
  68. #    ALLOCATE <3rd party>
  69. ENDAREA
  70. #
  71. # UNCOMMENT and list 3rd party non-overlayable libraries here:
  72. #
  73. LIBRARY VERTROOT.LIB
  74. #LIB <3rd party>
  75. #
  76. # If you want the 5.01 debugger UN-COMMENT the following:
  77. # NOTE: The 5.01 debugger library MUST be specified as a FILE
  78. #
  79. # FILE CLD.LIB
  80. #
  81. # UNCOMMENT for dLESKO's FUNCky 1.5 library
  82. #
  83. #@FUNCKY50.LNK
  84. #
  85. # Call the distribution script to overlay EXTEND.LIB
  86. #
  87. @CL501MIN.LNK
  88. #
  89. # Microsoft LLIBCA C library comes last if needed
  90. #
  91. #LIBRARY EXTEND
  92. #LIB VISA
  93. #LIB LLIBCA
  94.  
  95.